home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr08 / batsh151.zip / SAMPLE5.BSH < prev    next >
Text File  |  1995-02-09  |  595b  |  31 lines

  1. ; run and close CALCULATOR
  2. ; wait for printer-settings
  3. ;
  4. show hide
  5. wait off
  6. if Window Calculator goto showcalc
  7. run icon calc
  8. if errorlevel 2 goto error
  9. :showcalc
  10. show icon Calculator
  11. if errorlevel 2 goto exit
  12. icon exclamation
  13. label Close CALCULATOR to continue
  14. show icon
  15. play ding.wav
  16. waitclose 20 Calculator
  17. label Waiting for PRINTER settings
  18. play ding.wav
  19. waitopen 20 Printers
  20. exit
  21. :error
  22. message BATSH Error Message
  23.   This BATSH sample requires the following windows files
  24.   for executing the full sample demo:
  25.       calculator.exe
  26.       ding.wav
  27.  
  28. .ok,10
  29. :exit
  30.  
  31.